home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk.zip / JMP.H < prev    next >
C/C++ Source or Header  |  1991-04-07  |  876b  |  36 lines

  1.  
  2. /********************************************
  3. jmp.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the Awk programming language as defined in
  8. Aho, Kernighan and Weinberger, The AWK Programming Language,
  9. Addison-Wesley, 1988.
  10.  
  11. See the accompaning file, LIMITATIONS, for restrictions
  12. regarding modification and redistribution of this
  13. program in source or binary form.
  14. ********************************************/
  15.  
  16. /* $Log:    jmp.h,v $
  17.  * Revision 2.1  91/04/08  08:23:21  brennan
  18.  * VERSION 0.97
  19.  * 
  20. */
  21.  
  22. #ifndef   JMP_H
  23. #define   JMP_H
  24.  
  25. void  PROTO(BC_new, (void) ) ;
  26. void  PROTO(BC_insert, (int, INST*) ) ;
  27. void  PROTO(BC_clear, (INST *, INST *) ) ;
  28. void  PROTO(code_push, (INST *, unsigned) ) ;
  29. unsigned  PROTO(code_pop, (INST *) ) ;
  30. void  PROTO(code_jmp, (int, INST *) ) ;
  31. void  PROTO(patch_jmp, (INST *) ) ;
  32.  
  33.  
  34. #endif  /* JMP_H  */
  35.  
  36.